home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH07_1.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  926b  |  40 lines

  1. #include "stdio.h"
  2. #include "string.h"
  3.  
  4. void main()
  5. {
  6. int index;
  7. char string1[6], string2[6], string3[6], all_three[18];
  8.  
  9.    strcpy(string1, "one");
  10.    strcpy(string2, "two");
  11.    strcpy(string3, "three");
  12.  
  13.    strcpy(all_three, string1);
  14.    strcat(all_three, " ");
  15.    strcat(all_three, string2);
  16.    strcat(all_three, " ");
  17.    strcat(all_three, string3);
  18.  
  19.    for(index = 0 ; index < 10 ; index = index + 1)
  20.       printf("The final string is ---> %s\n", all_three);
  21.  
  22. }
  23.  
  24.  
  25.  
  26. /* Result of execution
  27.  
  28. The final string is ---> one two three
  29. The final string is ---> one two three
  30. The final string is ---> one two three
  31. The final string is ---> one two three
  32. The final string is ---> one two three
  33. The final string is ---> one two three
  34. The final string is ---> one two three
  35. The final string is ---> one two three
  36. The final string is ---> one two three
  37. The final string is ---> one two three
  38.  
  39. */
  40.